home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpgroupware_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  60 lines

  1. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  2. #  based on work from
  3. #  (C) Tenable Network Security
  4. #
  5. # This script is released under the GNU GPLv2
  6.  
  7. if(description)
  8. {
  9.  script_id(14708);
  10.  script_bugtraq_id(11130);
  11.  script_cve_id("CAN-2004-0875");
  12.  script_version ("$Revision: 1.6 $");
  13.  name["english"] = "PhpGroupWare XSS";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host seems to be running PhpGroupWare, is a multi-user groupware 
  19. suite written in PHP.
  20.  
  21. This issue exists due to a lack of sanitization of user-supplied data.
  22. A malicious attacker can exploited a flaw to conduct cross-site scripting 
  23. attacks.
  24.  
  25. Solution : Update to version 0.9.16.003 or newer
  26. See also : http://www.phpgroupware.org/
  27. Risk factor : Low";
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks for PhpGroupWare version";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_ATTACK);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  39.  family["english"] = "CGI abuses : XSS";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("phpgroupware_detect.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52. port = get_http_port(default:80);
  53.  
  54. kb = get_kb_item("www/" + port + "/phpGroupWare");
  55. if ( ! kb ) exit(0);
  56.  
  57. matches = eregmatch(pattern:"(.*) under (.*)", string:matches[0]);
  58. if ( ereg(pattern:"^0\.([0-8]\.|9\.([0-9]\.|1[0-5]\.|16\.0*[0-2]([^0-9]|$)))", string:matches[1]))
  59.     security_warning(port);
  60.